encoding/hex.decoder.in (field)
15 uses
encoding/hex (current package)
hex.go#L170: in []byte // input buffer (encoded form)
hex.go#L182: if len(d.in) < 2 && d.err == nil {
hex.go#L184: numCopy = copy(d.arr[:], d.in) // Copies either 0 or 1 bytes
hex.go#L186: d.in = d.arr[:numCopy+numRead]
hex.go#L187: if d.err == io.EOF && len(d.in)%2 != 0 {
hex.go#L188: if _, ok := fromHexChar(d.in[len(d.in)-1]); !ok {
hex.go#L189: d.err = InvalidByteError(d.in[len(d.in)-1])
hex.go#L197: if numAvail := len(d.in) / 2; len(p) > numAvail {
hex.go#L200: numDec, err := Decode(p, d.in[:len(p)*2])
hex.go#L201: d.in = d.in[2*numDec:]
hex.go#L203: d.in, d.err = nil, err // Decode error; discard input remainder
hex.go#L206: if len(d.in) < 2 {
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)